home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene3_4.dir / 00052_Script_mouseDown - loriBook to scene4C < prev    next >
Text File  |  1999-03-01  |  924b  |  38 lines

  1. --SS:mouseDown - loriBook to scene4C
  2.  
  3. global gScene4Done
  4.  
  5. on mouseDown
  6.   
  7.   if gScene4Done = #loriBook then
  8.     
  9.     puppetSprite 7, FALSE --lori eyes
  10.     set the visible of sprite 7 = FALSE
  11.     
  12.     puppetSprite 95, FALSE -- the rewind button
  13.     set the loc of sprite(95) = point(1000, 1000)
  14.     set the blend of sprite 95 = 0
  15.     puppetSprite 96, FALSE -- the back to intro button
  16.     set the loc of sprite(96) = point(1000, 1000)
  17.     set the blend of sprite 96 = 0
  18.     puppetSprite 97, FALSE -- the fastforward button
  19.     set the loc of sprite(97) = point(1000, 1000)
  20.     set the blend of sprite 97 = 0
  21.     
  22.     
  23.     cursor -1
  24.     if the volume of sound 2 >= 230 then
  25.       set the volume of sound 2 to 100
  26.     else if the volume of sound 2 <= 102 then
  27.       set the volume of sound 2 to 255
  28.     end if
  29.     
  30.     
  31.     go to frame "scene4c"
  32.     
  33.   else
  34.     nothing  
  35.   end if
  36.   
  37.   
  38. end